home *** CD-ROM | disk | FTP | other *** search
/ Developer CD Series 2000 November: Tool Chest / Dev.CD Nov 00 TC Disk 1.toast / Sample Code / Games / SoundSprocketTest / TS3TestAPI.c < prev    next >
Encoding:
C/C++ Source or Header  |  2000-09-28  |  845 b   |  43 lines  |  [TEXT/MPS ]

  1. /*
  2.  *    File:        TS3TestAPI.c
  3.  *
  4.  *    Copyright © 1996 Apple Computer, Inc.
  5.  */
  6.  
  7. #include "TS3TestAPI.h"
  8.  
  9.  
  10. /* =============================================================================
  11.  *        TestAPI_Init (external)
  12.  *
  13.  *    Initializes our thing.
  14.  * ========================================================================== */
  15. void TestAPI_Init(
  16.     void)
  17. {
  18. }
  19.  
  20.  
  21. /* =============================================================================
  22.  *        TestAPI_Exit (external)
  23.  *
  24.  *    Cleans up.
  25.  * ========================================================================== */
  26. void TestAPI_Exit(
  27.     void)
  28. {
  29. }
  30.  
  31.  
  32. /* =============================================================================
  33.  *        TestAPI_Execute (external)
  34.  *
  35.  *    Runs the API tests.
  36.  * ========================================================================== */
  37. void TestAPI_Execute(
  38.     void)
  39. {
  40. }
  41.  
  42.  
  43.